home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / mimetools.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  8KB  |  255 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Various tools used by MIME-reading or MIME-writing programs.'''
  5. import os
  6. import rfc822
  7. import tempfile
  8. __all__ = [
  9.     'Message',
  10.     'choose_boundary',
  11.     'encode',
  12.     'decode',
  13.     'copyliteral',
  14.     'copybinary']
  15.  
  16. class Message(rfc822.Message):
  17.     '''A derived class of rfc822.Message that knows about MIME headers and
  18.     contains some hooks for decoding encoded and multipart messages.'''
  19.     
  20.     def __init__(self, fp, seekable = 1):
  21.         rfc822.Message.__init__(self, fp, seekable)
  22.         self.encodingheader = self.getheader('content-transfer-encoding')
  23.         self.typeheader = self.getheader('content-type')
  24.         self.parsetype()
  25.         self.parseplist()
  26.  
  27.     
  28.     def parsetype(self):
  29.         str = self.typeheader
  30.         if str is None:
  31.             str = 'text/plain'
  32.         
  33.         if ';' in str:
  34.             i = str.index(';')
  35.             self.plisttext = str[i:]
  36.             str = str[:i]
  37.         else:
  38.             self.plisttext = ''
  39.         fields = str.split('/')
  40.         for i in range(len(fields)):
  41.             fields[i] = fields[i].strip().lower()
  42.         
  43.         self.type = '/'.join(fields)
  44.         self.maintype = fields[0]
  45.         self.subtype = '/'.join(fields[1:])
  46.  
  47.     
  48.     def parseplist(self):
  49.         str = self.plisttext
  50.         self.plist = []
  51.         while str[:1] == ';':
  52.             str = str[1:]
  53.             if ';' in str:
  54.                 end = str.index(';')
  55.             else:
  56.                 end = len(str)
  57.             f = str[:end]
  58.             if '=' in f:
  59.                 i = f.index('=')
  60.                 f = f[:i].strip().lower() + '=' + f[i + 1:].strip()
  61.             
  62.             self.plist.append(f.strip())
  63.             str = str[end:]
  64.  
  65.     
  66.     def getplist(self):
  67.         return self.plist
  68.  
  69.     
  70.     def getparam(self, name):
  71.         name = name.lower() + '='
  72.         n = len(name)
  73.         for p in self.plist:
  74.             if p[:n] == name:
  75.                 return rfc822.unquote(p[n:])
  76.                 continue
  77.         
  78.  
  79.     
  80.     def getparamnames(self):
  81.         result = []
  82.         for p in self.plist:
  83.             i = p.find('=')
  84.             if i >= 0:
  85.                 result.append(p[:i].lower())
  86.                 continue
  87.         
  88.         return result
  89.  
  90.     
  91.     def getencoding(self):
  92.         if self.encodingheader is None:
  93.             return '7bit'
  94.         
  95.         return self.encodingheader.lower()
  96.  
  97.     
  98.     def gettype(self):
  99.         return self.type
  100.  
  101.     
  102.     def getmaintype(self):
  103.         return self.maintype
  104.  
  105.     
  106.     def getsubtype(self):
  107.         return self.subtype
  108.  
  109.  
  110.  
  111. try:
  112.     import thread
  113. except ImportError:
  114.     import dummy_thread as thread
  115.  
  116. _counter_lock = thread.allocate_lock()
  117. del thread
  118. _counter = 0
  119.  
  120. def _get_next_counter():
  121.     global _counter
  122.     _counter_lock.acquire()
  123.     _counter += 1
  124.     result = _counter
  125.     _counter_lock.release()
  126.     return result
  127.  
  128. _prefix = None
  129.  
  130. def choose_boundary():
  131.     """Return a string usable as a multipart boundary.
  132.  
  133.     The string chosen is unique within a single program run, and
  134.     incorporates the user id (if available), process id (if available),
  135.     and current time.  So it's very unlikely the returned string appears
  136.     in message text, but there's no guarantee.
  137.  
  138.     The boundary contains dots so you have to quote it in the header."""
  139.     global _prefix
  140.     import time as time
  141.     if _prefix is None:
  142.         import socket as socket
  143.         hostid = socket.gethostbyname(socket.gethostname())
  144.         
  145.         try:
  146.             uid = repr(os.getuid())
  147.         except AttributeError:
  148.             uid = '1'
  149.  
  150.         
  151.         try:
  152.             pid = repr(os.getpid())
  153.         except AttributeError:
  154.             pid = '1'
  155.  
  156.         _prefix = hostid + '.' + uid + '.' + pid
  157.     
  158.     return '%s.%.3f.%d' % (_prefix, time.time(), _get_next_counter())
  159.  
  160.  
  161. def decode(input, output, encoding):
  162.     '''Decode common content-transfer-encodings (base64, quopri, uuencode).'''
  163.     if encoding == 'base64':
  164.         import base64
  165.         return base64.decode(input, output)
  166.     
  167.     if encoding == 'quoted-printable':
  168.         import quopri as quopri
  169.         return quopri.decode(input, output)
  170.     
  171.     if encoding in ('uuencode', 'x-uuencode', 'uue', 'x-uue'):
  172.         import uu as uu
  173.         return uu.decode(input, output)
  174.     
  175.     if encoding in ('7bit', '8bit'):
  176.         return output.write(input.read())
  177.     
  178.     if encoding in decodetab:
  179.         pipethrough(input, decodetab[encoding], output)
  180.     else:
  181.         raise ValueError, 'unknown Content-Transfer-Encoding: %s' % encoding
  182.  
  183.  
  184. def encode(input, output, encoding):
  185.     '''Encode common content-transfer-encodings (base64, quopri, uuencode).'''
  186.     if encoding == 'base64':
  187.         import base64
  188.         return base64.encode(input, output)
  189.     
  190.     if encoding == 'quoted-printable':
  191.         import quopri
  192.         return quopri.encode(input, output, 0)
  193.     
  194.     if encoding in ('uuencode', 'x-uuencode', 'uue', 'x-uue'):
  195.         import uu
  196.         return uu.encode(input, output)
  197.     
  198.     if encoding in ('7bit', '8bit'):
  199.         return output.write(input.read())
  200.     
  201.     if encoding in encodetab:
  202.         pipethrough(input, encodetab[encoding], output)
  203.     else:
  204.         raise ValueError, 'unknown Content-Transfer-Encoding: %s' % encoding
  205.  
  206. uudecode_pipe = '(\nTEMP=/tmp/@uu.$$\nsed "s%^begin [0-7][0-7]* .*%begin 600 $TEMP%" | uudecode\ncat $TEMP\nrm $TEMP\n)'
  207. decodetab = {
  208.     'uuencode': uudecode_pipe,
  209.     'x-uuencode': uudecode_pipe,
  210.     'uue': uudecode_pipe,
  211.     'x-uue': uudecode_pipe,
  212.     'quoted-printable': 'mmencode -u -q',
  213.     'base64': 'mmencode -u -b' }
  214. encodetab = {
  215.     'x-uuencode': 'uuencode tempfile',
  216.     'uuencode': 'uuencode tempfile',
  217.     'x-uue': 'uuencode tempfile',
  218.     'uue': 'uuencode tempfile',
  219.     'quoted-printable': 'mmencode -q',
  220.     'base64': 'mmencode -b' }
  221.  
  222. def pipeto(input, command):
  223.     pipe = os.popen(command, 'w')
  224.     copyliteral(input, pipe)
  225.     pipe.close()
  226.  
  227.  
  228. def pipethrough(input, command, output):
  229.     (fd, tempname) = tempfile.mkstemp()
  230.     temp = os.fdopen(fd, 'w')
  231.     copyliteral(input, temp)
  232.     temp.close()
  233.     pipe = os.popen(command + ' <' + tempname, 'r')
  234.     copybinary(pipe, output)
  235.     pipe.close()
  236.     os.unlink(tempname)
  237.  
  238.  
  239. def copyliteral(input, output):
  240.     while None:
  241.         line = input.readline()
  242.         if not line:
  243.             break
  244.         
  245.  
  246.  
  247. def copybinary(input, output):
  248.     BUFSIZE = 8192
  249.     while None:
  250.         line = input.read(BUFSIZE)
  251.         if not line:
  252.             break
  253.         
  254.  
  255.